std::basic_istringstream::operator=
From Cppreference
< cpp | io | basic istringstream
| C++ Standard Library | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||
| Input/output library | ||||||||||||||||||||
| std::basic_istringstream | ||||||||||||||||||||
| ||||||||||||||||||||
| basic_ifstream& operator=( basic_istringstream&& other );
| (C++0x) | |
Moves the string stream. The source stream becomes of invalid state after the operation.
Contents |
Parameters
| other | - | string stream to move. other becomes of invalid state after the operation. |
Return value
*this
Example
| This section is incomplete |
See also
| swaps two string streams (public member function) | ||